home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / What's New? / Development Kits / Mac OS / USB DDK 1.4.6f4 / Examples / PrinterClassDriver / PrintChooserSample / Utils.h < prev   
Encoding:
C/C++ Source or Header  |  2000-09-25  |  633 b   |  39 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Utils.h
  3.  
  4.     Contains:    General utilities header
  5.  
  6.  
  7.  
  8.     Copyright:    © 1998, 2000 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Writers:
  11.  
  12.         (gc)    Garth Cummings
  13.  
  14.     Change History (most recent first):
  15.  
  16.       <USB1>     5/11/00    gc        first checked in
  17.         22 Mar 98     gp        Created
  18.  
  19.     To Do:
  20. */
  21.  
  22. #ifndef __UTILS__
  23. #define __UTILS__
  24.  
  25. #ifndef __LISTS__
  26. #include <Lists.h>
  27. #endif
  28.  
  29. #ifndef __TYPES__
  30. #include <Types.h>
  31. #endif
  32.  
  33. extern    Boolean PStrEqualCaseInsensitive( Str255 string1, Str255 string2 );
  34. extern    void AppendPStr(StringPtr mainStr, StringPtr addStr);
  35. extern    void GetNameFromCell (StringPtr theString, Cell cell, ListHandle hList);
  36.  
  37. #endif
  38.  
  39.